From e1d3c5b9c85b177cecb42b6efe8ce3e8b3accbfa Mon Sep 17 00:00:00 2001 From: robertl Date: Tue, 13 Sep 2005 23:15:27 +0000 Subject: [PATCH] Tweak write of a few fix types. --- gpsbabel/gpx.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gpsbabel/gpx.c b/gpsbabel/gpx.c index 7fd6b7f63..b20ee710b 100644 --- a/gpsbabel/gpx.c +++ b/gpsbabel/gpx.c @@ -1230,6 +1230,13 @@ gpx_write_common_acc(const waypoint *waypointp, const char *indent) case fix_pps: fix = "pps"; break; + case fix_none: + fix = "none"; + break; + /* GPX spec says omit if we don't know. */ + case fix_unknown: + default: + break; } if (fix) { fprintf(ofd, "%s%s\n", indent, fix); -- 2.30.2